home *** CD-ROM | disk | FTP | other *** search
Makefile | 1992-07-15 | 1.6 KB | 55 lines | [TEXT/MPS ] |
- # the list of dependencies to create our application
- # to create the dump file it cannot use the default
- # build rules and is explicitly defined
-
- DblBufProcObjs = "{ObjFolder}"MainApp.c.o ∂
- "{ObjFolder}"AIFFGoodies.c.o ∂
- "{ObjFolder}"DoubleBuffers.c.o ∂
- "{ObjFolder}"Oscilator.c.o ∂
- "{ObjFolder}"PlayFromFile.c.o ∂
- "{ObjFolder}"PlayFromSynth.c.o ∂
- "{CLibraries}CSANELib.o" ∂
- "{Libraries}Interface.o" ∂
- "{Libraries}Runtime.o"
-
- "{ObjFolder}" ƒ :
-
- # when building the dump file we only need a syntax check
- # to avoid the object file which we don't need at all
-
- "{ObjFolder}"MacHeaders ƒ StdIncludes.h
- Echo ∂t∂t"Creating MacHeaders"
- C StdIncludes.h {COptions} -k "{ObjFolder}" -c
-
- # echo the tool commands to the user's worksheet by substituting
- # the tool's name to be a command and then the tool
-
- C = Echo ∂t∂tCompiling {Default}.c; C -opt off
-
- "{ObjFolder}"MainApp.c.o ƒ MainApp.h StdIncludes.h
-
- "{ObjFolder}"AIFFGoodies.c.o ƒ MainApp.h StdIncludes.h
-
- "{ObjFolder}"Oscilator.c.o ƒ MainApp.h StdIncludes.h
-
- "{ObjFolder}"DoubleBuffers.c.o ƒ MainApp.h StdIncludes.h DoubleBuffer.h
-
- "{ObjFolder}"PlayFromFile.c.o ƒ MainApp.h StdIncludes.h DoubleBuffer.h
-
- "{ObjFolder}"PlayFromSynth.c.o ƒ MainApp.h StdIncludes.h DoubleBuffer.h
-
- "{ObjFolder}"DoubleBuffer ƒƒ "{ObjFolder}"MacHeaders
-
- "{ObjFolder}"DoubleBuffer ƒƒ {DblBufProcObjs}
- Echo ∂t∂t"Linking DoubleBuffer"
- Link -o {Targ} {DblBufProcObjs} -t APPL -c CAMI ∂
- -sn CSANELib=Main -sn SANELIB=Main
-
- "{ObjFolder}"DoubleBuffer ƒƒ MainApp.r MainApp.h
- Echo ∂t∂t"Rezing DoubleBuffer"
- Rez MainApp.r {ROptions} -o {Targ}
-
-
-
-
-